home *** CD-ROM | disk | FTP | other *** search
/ Champak 45 / Vol 45.iso / games / bubblegu.swf / scripts / frame_1 / PlaceObject2_884_3 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Encoding:
Text File  |  2007-04-20  |  322 b   |  12 lines

  1. onClipEvent(enterFrame){
  2.    bytesLoaded = _root.getBytesLoaded();
  3.    amountLoaded = bytesLoaded / totalFileSize;
  4.    percentLoaded = int(100 * amountLoaded);
  5.    this._xscale = percentLoaded;
  6.    _root.loadingMessage = percentLoaded + "%";
  7.    if(amountLoaded >= 1)
  8.    {
  9.       _root.gotoAndStop("complete");
  10.    }
  11. }
  12.